home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / IsBinaryString.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  214 b   |  7 lines

  1. $str="abc"
  2. $bin=BinaryString($str)
  3. $x = IsBinaryString($bin)    ; true
  4. MsgBox(0, "Test isbinaryString", $bin & " is " & $x)
  5. $y = IsBinaryString($str)    ; false
  6. MsgBox(0, "Test isbinaryString", $str & " is " & $y)
  7.